home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / share / themes / New Wave / userChrome.css < prev   
Encoding:
Cascading Style Sheet File  |  2009-03-23  |  791 b   |  35 lines

  1. /* This file fixes the New Wave Firefox/Thinderbird issue with unreadable text in the menubar
  2.  *
  3.  * Created by Anton Kerezov <ankere@gmail.com>
  4.  * 
  5.  * Feel free to modify and share 
  6.  */
  7. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
  8.  
  9.  
  10.  
  11. /*make the menubar use gray color for text*/
  12. menubar > menu {
  13.    color: #E5E5E5  !important; 
  14. }
  15. /*make the menu use white color for text on mouse over*/
  16. menubar > menu:hover {
  17.   color: white;
  18. }
  19.  
  20. /* use black for the prelight state */
  21. menubar > menu[_moz-menuactive="true"][open="true"] {
  22.   color: black !important;
  23. }
  24.  
  25. /* Make the statusbar use grey color for text.
  26.  * This improves usability.
  27.  */
  28. statusbar
  29. {
  30.     font-weight: normal !important;
  31.        color: rgb(50%,50%,50%) !important;
  32. }
  33.  
  34.  
  35.